/* --------------------------------------------------
  幅800px以上のスタイル指定 ここから
-------------------------------------------------- */

@media screen and (min-width: 800px) {
  body {
    max-width: 2000px;
    margin: 0px;
    padding: 0px;
    font-family : 'Microsoft YaHei','SimSun','sans-serif';
  }
  a {
    font-size: 14px;
  }
  h2 {
    font-size: 20px;
  }
  .top {
    padding: 10px 5% 0;
  }
  .top-title h2 {
    position: relative;
    padding: 1rem .5rem;
  }
  .top-title h2:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    content: '';
    border-radius: 3px;
    background-image: -webkit-gradient(linear, right top, left top, from(#FACC2E),to(#FA5858));
    background-image: -webkit-linear-gradient(right, #FACC2E 0%, #FA5858 100%);
    background-image: linear-gradient(to left, #FACC2E 0%, #FA5858 100%);
   }
  .top-img-center {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .top-img-left {
    display: flex;
    justify-content: flex-end;
    padding: 5%;
  }
  /* ----- section 調整 -----*/
  .main_content {
    width: 98%;
    /* 幅指定 */
    float: left;
    /* 要素を並べる */
    height: auto;
    /* 高さ指定 */
  }
  /* ------ side 調整 (title)------*/
  .side h2 {
    position: relative;
    display: inline-block;
    padding: 0 25px;
  }
  .side h2:before, .side h2:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 20px;
    height: 2px;
    border-top: solid 1px black;
    border-bottom: solid 1px black;
  }
  .side h2:before {
    left: 0;
  }
  .side h2:after {
    right: 0;
  }
  /* ------ side 調整 (list)------*/
  .side-menu-nav {
    text-align: left;
    border-radius: 0px;
    overflow: hidden;
  }
  .side-menu {
    color: #fff;
    background: white;
    padding: .4em .0em;
    font-weight: bold;
  }
  .side-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .side-menu-nav ul li {
    padding: 0;
    margin: 0;
  }
  .side-menu-nav ul li a {
    color: #3F51B5;
    font-weight: bold;
    text-decoration: none;
    display: block;
    border-bottom: 1px dotted #3F51B5;
  }
  /* ------ main_content 調整 ------*/
  .top-title-block {
    width: 100%;
  }
  .top-main-block {
    padding: 2% 2% 0 2%;
  }
  /* --------------------------------------------------
    本文　ここから
-------------------------------------------------- */
  .top-saiyou-setu {
    padding: 3% 5% 2% 5%;
    height: 80%;
    min-height: 400px;
  }
  /* --------------------------------------------------
    section 
-------------------------------------------------- */
  .top-main-pc {
    text-align: center
  }
  table {
    width: 100%;
    text-align: center
  }
  .top-other {
    margin: 5% 10% 10% 10%;
  }
  .top-main-table-fast tr td {
    border: #999 solid 1px;
  }
  .top-main-table-fast tr td:nth-of-type(1) {
    width: 20%;
    white-space: nowrap;
  }
  .top-main-table-fast tr td:nth-of-type(2) {
    white-space: nowrap;
    /* 勝手に折り返さない */
    width: 30%;
  }
  .top-main-table-fast tr td:nth-of-type(3) {
    width: 50%;
  }
  td {
    padding: 5px 14px;
  }
  thead {
    background: #E02D2D;
    color: white;
  }
  .main_content {
    padding: 2% 0 2% 0;
  }
}

/* --------------------------------------------------
  幅800px以下のスタイル指定 ここから
-------------------------------------------------- */

@media screen and (max-width: 800px) {
    body {
    margin: 0px;
    padding: 0px;
    font-family : 'Microsoft YaHei','SimSun','sans-serif';
  }
  h2 {
    font-size: 20px;
  }
  a {
    font-size: 16px;
  }
  .top {
    padding: 100px 1% 0;
  }
  /* ------side menu title-----*/
  .side-title h2 {
    position: relative;
    padding: 0 20% 0 20%;
  }
  /*-------side menu-------*/
  .side h2 {
    text-align: center;
    padding: 5px;
  }
  .side nav {
    text-align: center;
  }
  .side nav ul {
    margin: 0;
    padding: 0;
  }
  .side nav li {
    list-style: none;
    display: inline-block;
    min-width: 60px;
    padding: 0 5px 0 5px;
  }
  .side nav li:not(:last-child) {
    border-right: 2px solid #ddd;
  }
  .side nav a {
    text-decoration: none;
    color: #333;
  }
  .side nav a.current {
    color: #00B0F0;
    border-bottom: 2px solid #00B0F0;
  }
  .side nav a:hover {
    color: #F7CB4D;
    border-bottom: 2px solid #F7CB4D;
  }
  /*---- top-title -----*/
  .top-title h2 {
    position: relative;
    padding: 1rem 1rem;
  }
  .top-title h2:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    content: '';
    border-radius: 3px;
    background-image: -webkit-gradient(linear, right top, left top, from(#FACC2E),to(#FA5858));
    background-image: -webkit-linear-gradient(right, #FACC2E 0%, #FA5858 100%);
    background-image: linear-gradient(to left, #FACC2E 0%, #FA5858 100%);
  }
  /* ------ main_content 調整 ------*/
  .top-title-block {
    width: 100%;
  }
  .top-main-block {
    padding: 2% 2% 0 2%;
  }
  /* --------------------------------------------------
    本文SP　ここから
-------------------------------------------------- */
  /* --------------------------------------------------
    table 
-------------------------------------------------- */
  table {
    width: 100%;
  }
  .top-main-table-fast tr td {
    border: #999 solid 1px;
  }
  .top-main-table-fast tr td:nth-of-type(1) {
    width: 20%;
    white-space: nowrap;
  }
  .top-main-table-fast tr td:nth-of-type(2) {
    white-space: nowrap;
    /* 勝手に折り返さない */
    width: 20%;
  }
  .top-main-table-fast tr td:nth-of-type(3) {
    width: 60%;
  }
  td {
    padding: 5px 5px;
  }
  thead {
    background: #E02D2D;
    color: white;
  }
  .top-main-pc {
    display: none;
  }
  /* --------------------------------------------------
    画像
-------------------------------------------------- */
  .top-main-img {
    text-align: center;
  }
  .top-main-img img {
    width: 50%;
    max-width: 300px;
    min-height: auto;
  }
  .btm img {
    width: 16px;
  }

  .top-main-table-fast{
    margin: 5% 2%;
  }
}


@page { size: 210mm 297mm } /* A4縦サイズ */
@media print{

  body {
    margin: 0px;
    padding: 0px;
    font-family : 'Microsoft YaHei','SimSun','sans-serif';
  }
  a {
    font-size: 14px;
  }
  h2 {
    font-size: 20px;
  }
  .top {
    padding: 10px 0% 0;
  }
  .top-title h2 {
    position: relative;
    padding: 1rem .5rem;
  }
  .top-title h2:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    content: '';
    border-radius: 3px;
    background-image: -webkit-gradient(linear, right top, left top, from(#FACC2E),to(#FA5858));
    background-image: -webkit-linear-gradient(right, #FACC2E 0%, #FA5858 100%);
    background-image: linear-gradient(to left, #FACC2E 0%, #FA5858 100%);
   }
  .top-img-center {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .top-img-left {
    display: flex;
    justify-content: flex-end;
    padding: 5%;
  }
  /* ----- section 調整 -----*/
  .main_content {
    width: 98%;
    /* 幅指定 */
    float: left;
    /* 要素を並べる */
    height: auto;
    /* 高さ指定 */
  }
  /* ------ side 調整 (title)------*/
  .side h2 {
    position: relative;
    display: inline-block;
    padding: 0 25px;
  }
  .side h2:before, .side h2:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 20px;
    height: 2px;
    border-top: solid 1px black;
    border-bottom: solid 1px black;
  }
  .side h2:before {
    left: 0;
  }
  .side h2:after {
    right: 0;
  }
  /* ------ side 調整 (list)------*/
  .side-menu-nav {
    text-align: left;
    border-radius: 0px;
    overflow: hidden;
  }
  .side-menu {
    color: #fff;
    background: white;
    padding: .4em .0em;
    font-weight: bold;
  }
  .side-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .side-menu-nav ul li {
    padding: 0;
    margin: 0;
  }
  .side-menu-nav ul li a {
    color: #3F51B5;
    font-weight: bold;
    text-decoration: none;
    display: block;
    border-bottom: 1px dotted #3F51B5;
  }
  /* ------ main_content 調整 ------*/
  .top-title-block {
    width: 100%;
  }
  .top-main-block {
    padding: 2% 2% 0 2%;
  }
  /* --------------------------------------------------
    本文　ここから
-------------------------------------------------- */
  .top-saiyou-setu {
    padding: 3% 5% 2% 5%;
    height: 80%;
    min-height: 400px;
  }
  /* --------------------------------------------------
    section 
-------------------------------------------------- */
  .top-main-pc {
    text-align: center
  }
  table {
    width: 100%;
    text-align: center
  }
  .top-other {
    margin: 5% 10% 10% 10%;
  }
  .top-main-table-fast tr td {
    border: #999 solid 1px;
  }
  .top-main-table-fast tr td:nth-of-type(1) {
    width: 20%;
    white-space: nowrap;
  }
  .top-main-table-fast tr td:nth-of-type(2) {
    white-space: nowrap;
    /* 勝手に折り返さない */
    width: 30%;
  }
  .top-main-table-fast tr td:nth-of-type(3) {
    width: 50%;
  }
  td {
    padding: 5px 14px;
  }
  thead {
    background: #E02D2D;
    color: white;
  }
  .main_content {
    padding: 2% 0 2% 0;
  }
}